-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sourcery Starbot ⭐ refactored lamhoangtung/LineHTR #15
base: master
Are you sure you want to change the base?
Conversation
with open(filePath + 'labels.json') as json_data: | ||
with open(f'{filePath}labels.json') as json_data: | ||
label_file = json.load(json_data) | ||
|
||
# Log | ||
print("Loaded", len(label_file), "images") | ||
|
||
# Put sample into list | ||
for fileName, gtText in label_file.items(): | ||
self.samples.append(Sample(gtText, filePath + fileName)) | ||
self.samples.extend( | ||
Sample(gtText, filePath + fileName) | ||
for fileName, gtText in label_file.items() | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function DataLoader.__init__
refactored with the following changes:
- Use f-string instead of string concatenation (
use-fstring-for-concatenation
) - Replace a for append loop with list extend (
for-append-to-extend
)
print('Python: ' + sys.version) | ||
print('Tensorflow: ' + tf.__version__) | ||
print(f'Python: {sys.version}') | ||
print(f'Tensorflow: {tf.__version__}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function Model.setupTF
refactored with the following changes:
- Use f-string instead of string concatenation (
use-fstring-for-concatenation
)
encodedLabelStrs = [[] for i in range(Model.batchSize)] | ||
encodedLabelStrs = [[] for _ in range(Model.batchSize)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function Model.decoderOutputToText
refactored with the following changes:
- Replace unused for index with underscore (
for-index-underscore
)
Thanks for starring sourcery-ai/sourcery ✨ 🌟 ✨
Here's your pull request refactoring your most popular Python repo.
If you want Sourcery to refactor all your Python repos and incoming pull requests install our bot.
Review changes via command line
To manually merge these changes, make sure you're on the
master
branch, then run: